home *** CD-ROM | disk | FTP | other *** search
/ DOS Vuser Deluxe 2003 October / DOS Vuser Deluxe 2003 Oct - Disc 1.iso / FREE / INTERNET / iria107a.lzh / api_test.vbs next >
Text File  |  2000-12-14  |  299b  |  13 lines

  1. On Error Resume Next
  2. set Iria = CreateObject("Iria.IriaApi")
  3. if Iria is Nothing then
  4.   MsgBox("Iriaé¬î⌐òté⌐éΦé▄é╣é±")
  5. else
  6.   count = Iria.ItemCount
  7.   if count > 0 then
  8.     id = Iria.Items(0).Self_ID
  9.     MsgBox(Iria.ItemStatus(id))
  10.   end if                         
  11. end if
  12.  
  13. Iria = Nothing